@font-face {
    font-family: "GFS Didot";
    src: url("../fonts/gfs_didot.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "GFS Didot";
    src: url("../fonts/gfs_didot_italic.otf") format("opentype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "GFS Didot";
    src: url("../fonts/gfs_didot_bold.otf") format("opentype");
    font-weight: bold;
    font-style: normal;
}

body {
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  font-family: "GFS Didot", sans-serif;
  font-size: 0.95rem;
}

.retro-wrapper {
  color: #111;
  background-color: #fff;
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  min-height: 100vh;
  box-sizing: border-box;
}

.retro-header {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 20px;
}

.retro-header h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 30px 0;
  letter-spacing: 1px;
}

.colorful-text {
  font-style: italic;
}

/* Navigation */
.retro-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}

.retro-nav a {
  text-decoration: none;
  color: rgb(100, 120, 120);
  font-size: 0.9rem;
  font-weight: normal;
}

.retro-nav a:hover {
  text-decoration: underline;
}

/* Main Layout */
.retro-content {
  display: flex;
  gap: 50px;
  margin-top: 40px;

  border-bottom: 1px solid rgb(200, 200, 200);
}

/* Left Column (Bio & Text) */
.retro-left {
  flex: 1.2;

  line-height: 1.4;
}

.retro-left p {
  margin-bottom: 22px;
}

.retro-link {
  color: #2234ff;
}

.retro-link:hover {
  text-decoration: underline;
}

/* Right Column (Sidebar & Widgets) */
.retro-right {
  text-align: center;
  
  flex: 0.8;
  font-size: 0.85rem;
  color: #333;
}

.retro-right img.main-pic {
  max-width: 80%;
  border: 1px solid black;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}

.pic-caption {
  color: #555;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.retro-stats {
  text-transform: uppercase;
  color: #888;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.retro-stats strong {
  color: #000;
}

.status-line {
  border: 1px solid black;
  padding: 1em;
  background-color: rgb(240, 255, 200);
  color: black;

  font-size: 0.9em;
  line-height: 1.4em;
  text-align: center;
}

.status-label {
  text-transform: uppercase;
  color: #888;
}

/* Badges & Textarea */
.badge-container {
  margin-top: 20px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.badge-container img {
  height: 31px;
  image-rendering: pixelated;
}

.embed-box {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #ccc;
  padding: 2px;
  margin-top: 5px;
  background: #fff;
}

.embed-box textarea {
  width: 100%;
  height: 31px;
  font-size: 10px;
  resize: none;
  border: none;
  outline: none;
  font-family: monospace;
  overflow: hidden;
}

.desktop-warning {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-text {
  margin: 0 5em;
}

.status {
  margin: 0 auto;
  text-align: center;
  max-width: 30ch;
}

.table-of-contents a {
  text-decoration: none;
  color: rgb(100, 100, 220);
  
}

.table-of-contents h2 {
  border: none;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
  text-align: center;
  border-top: 1px solid #aeaeae;
  border-bottom: 1px solid #aeaeae;
  
  padding: 0.5em 0em;
}

.retro-right-single a {
  text-decoration: none;
}

.retro-right-single h1,
.retro-right-single h2,
.retro-right-single h3 {
  border: none;
}

.retro-content-single {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.retro-footer {
  margin-top: 60px;
  padding-bottom: 20px;
  text-align: center;
  clear: both;
}

.meander-border {
  height: 60px; /* Adjust based on your SVG's actual height */
  width: 100%;
  margin-bottom: 10px;

  -webkit-mask-image: url('../meander.svg');
  mask-image: url('../meander.svg');
  
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  
  -webkit-mask-position: center;
  mask-position: center;
}


.retro-footer p {
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
